home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / circuits / irsim_ta.z / irsim_ta / irsim / src / anaNO / ana.c next >
Encoding:
C/C++ Source or Header  |  1990-09-13  |  1.8 KB  |  66 lines

  1. /* 
  2.  *     ********************************************************************* 
  3.  *     * Copyright (C) 1988, 1990 Stanford University.                     * 
  4.  *     * Permission to use, copy, modify, and distribute this              * 
  5.  *     * software and its documentation for any purpose and without        * 
  6.  *     * fee is hereby granted, provided that the above copyright          * 
  7.  *     * notice appear in all copies.  Stanford University                 * 
  8.  *     * makes no representations about the suitability of this            * 
  9.  *     * software for any purpose.  It is provided "as is" without         * 
  10.  *     * express or implied warranty.  Export of this software outside     * 
  11.  *     * of the United States of America may require an export license.    * 
  12.  *     ********************************************************************* 
  13.  */
  14.  
  15. #include <stdio.h>
  16. #include "defs.h"
  17. #include "net.h"
  18.  
  19. typedef long  TimeType;
  20.  
  21.  
  22. public int AddNode( nd, flag )
  23.   nptr  nd;
  24.   int   flag;
  25.   {
  26.     return( 1 );
  27.   }
  28.  
  29. public int AddVector( vec, flag )
  30.   bptr  vec;
  31.   int   flag;
  32.   {
  33.     return( 1 );
  34.   }
  35.  
  36. public void DisplayTraces( isMapped )  int  isMapped;  {}
  37.  
  38. public void StopAnalyzer()  {}
  39.  
  40. public void RestartAnalyzer( first_time, last_time, same_hist )
  41.   long  first_time, last_time;
  42.   int   same_hist;
  43.   {}
  44.  
  45. public void ClearTraces() {}
  46.  
  47. public void RemoveVector( b )  bptr  b; {}
  48.  
  49. public void RemoveNode( n )  nptr  n; {}
  50.  
  51. public void UpdateWindow( endT ) TimeType  endT;  {}
  52.  
  53. public void TerminateAnalyzer() {}
  54.  
  55. public int InitDisplay( fname, display_unit )
  56.   char  *fname;
  57.   char  *display_unit;
  58.   {
  59.     lprintf( stdout, "No analyzer in this version\n" );
  60.     return( FALSE );
  61.   }
  62.  
  63. public void InitTimes( firstT, stepsize, lastT )
  64.   TimeType  firstT, stepsize, lastT;
  65.   {}
  66.